home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Tools / modulator / Templates / object_head < prev    next >
Text File  |  1995-12-21  |  250b  |  14 lines

  1.  
  2. /* Declarations for objects of type $name$ */
  3.  
  4. typedef struct {
  5.     PyObject_HEAD
  6.     /* XXXX Add your own stuff here */
  7. } $abbrev$object;
  8.  
  9. staticforward PyTypeObject $Abbrev$type;
  10.  
  11.  
  12.  
  13. /* ---------------------------------------------------------------- */
  14.